home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / prokit34.zip / DEBUGS.INT < prev    next >
Text File  |  1991-04-01  |  228b  |  17 lines

  1.  
  2. unit debugs;   {debugging support unit}
  3.  
  4. interface
  5.  
  6. uses dos;
  7.  
  8. type
  9.    textptr = ^text;
  10.  
  11. var
  12.    debugfd:    textptr;    {debugging output file}
  13.  
  14.    debugging:  boolean;    {true while debugging}
  15.  
  16. implementation
  17.